From: Don Slutz Date: Tue, 5 Nov 2013 14:11:51 +0000 (-0500) Subject: get_maintainer.pl: Adjust to Xen workflow X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5935 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=d6738db02d397ff7edd6ff7af156980cd9d780ad;p=xen.git get_maintainer.pl: Adjust to Xen workflow Based on feedback from reviewers: * Disable git fallback by default: it has a tendency to mail anyone who did a single oneline change and should not be necessary for a project of Xen's size. * Disable rolestats: Makes cut-and-paste from the output into the commit message easy. * Drop "THE REST" fallback: Don't spam Keir *too* much. Signed-off-by: Don Slutz Acked-by: Ian Campbell [ijc -- expanded the changelog] --- diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 7465c2b973..df920e226d 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -28,7 +28,7 @@ my $email_git = 0; my $email_git_all_signature_types = 0; my $email_git_blame = 0; my $email_git_blame_signatures = 1; -my $email_git_fallback = 1; +my $email_git_fallback = 0; my $email_git_min_signatures = 1; my $email_git_max_maintainers = 5; my $email_git_min_percent = 5; @@ -37,10 +37,11 @@ my $email_hg_since = "-365"; my $interactive = 0; my $email_remove_duplicates = 1; my $email_use_mailmap = 1; +my $email_drop_the_rest_supporter_if_supporter_found = 1; my $output_multiline = 1; my $output_separator = ", "; my $output_roles = 0; -my $output_rolestats = 1; +my $output_rolestats = 0; my $scm = 0; my $web = 0; my $subsystem = 0; @@ -196,6 +197,7 @@ if (!GetOptions( 'i|interactive!' => \$interactive, 'remove-duplicates!' => \$email_remove_duplicates, 'mailmap!' => \$email_use_mailmap, + 'drop_the_rest_supporter!' => \$email_drop_the_rest_supporter_if_supporter_found, 'm!' => \$email_maintainer, 'n!' => \$email_usename, 'l!' => \$email_list, @@ -651,6 +653,19 @@ sub get_maintainers { } } + if ($email_drop_the_rest_supporter_if_supporter_found && $#email_to > 0) { + my @email_new; + my $do_replace = 0; + foreach my $email (@email_to) { + if ($email->[1] ne 'supporter:THE REST') { + $do_replace = 1; + push @email_new, $email; + } + } + @email_to = @email_new + if $do_replace; + } + foreach my $email (@email_to, @list_to) { $email->[0] = deduplicate_email($email->[0]); }